control-C - significado y definición. Qué es control-C
Diclib.com
Diccionario ChatGPT
Ingrese una palabra o frase en cualquier idioma 👆
Idioma:

Traducción y análisis de palabras por inteligencia artificial ChatGPT

En esta página puede obtener un análisis detallado de una palabra o frase, producido utilizando la mejor tecnología de inteligencia artificial hasta la fecha:

  • cómo se usa la palabra
  • frecuencia de uso
  • se utiliza con más frecuencia en el habla oral o escrita
  • opciones de traducción
  • ejemplos de uso (varias frases con traducción)
  • etimología

Qué (quién) es control-C - definición

COMPUTER COMMAND
Control C; Cntl C; Cntl-C; Ctrl-C; Ctrl+c; Control-c; ^C; Ctrl-c; Ctrl+C; Ctl-c

control-C         
<character> (Or ETX, End of Text) The ASCII character with code 3. Control-C is the interrupt character used on many {operating systems}, including Unix and MS-DOS to abort a running program. Among BSD Unix hackers, the canonical humorous response to "Give me a break!" is "Control C". [Jargon File] (1995-03-16)
Control-C         
Control+C is a common computer command. It is generated by pressing the key while holding down the key on most computer keyboards.
C process control         
GROUP OF FUNCTIONS (ABORT, EXIT, _EXIT, ATEXIT, QUICK_EXIT, AT_QUICK_EXIT, GETENV, SYSTEM) IN THE HEADER STDLIB.H OF THE C STANDARD LIBRARY IMPLEMENTING BASIC PROCESS CONTROL OPERATIONS
Cstdlib; System (C standard library); System (C Standard Library); Atexit; Getenv; C program control operations; System (C); Abort (C)
C process control refers to a group of functions in the standard library of the C programming language implementing basic process control operations. The process control operations include actions such as termination of the program with various levels of cleanup, running an external command interpreter or accessing the list of the environment operations.

Wikipedia

Control-C

Control-C is a common computer command. It is generated by pressing the C key while holding down the Ctrl key on most computer keyboards.

In graphical user interface environments that use the control key to control the active program, control+C is often used to copy highlighted text to the clipboard.

In many command-line interface environments, control+C is used to abort the current task and regain user control. It is a special sequence that causes the operating system to send a signal to the active program. Usually the signal causes it to end, but the program may "catch" it and do something else, typically returning control to the user.